'Declaration
Public Function New( _ ByVal source As IEnumerable, _ ByVal select As Func(Of Integer,S,T) _ )
'Usage
Dim source As IEnumerable Dim select As Func(Of Integer,S,T) Dim instance As New C1SelectCollectionView(Of S,T)(source, select)
public C1SelectCollectionView<S,T>( IEnumerable source, Func<int,S,T> select )
Parameters
- source
- The source.
- select
- Select function which converts a source item into an item of this collection view.